home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD Concept 6
/
CD Concept 06.iso
/
mac
/
UTILITAIRE
/
Survival 6.0.2
/
Macros
/
Create.Macro
< prev
next >
Wrap
Text File
|
1995-03-18
|
250b
|
9 lines
macro 'createfile';
{Loads the data file 'Ejemplo.surv' and creates a new
data file 'Nuevo fichero' with vars 1,2,3,7 and 8}
begin
RESET;
GETDATA('HD80:Mrp Project:Data:Ejemplo.surv');
CREATE('HD80:Mrp Project:Data:Nuevo fichero',1,2,3,7,8);
end;